home *** CD-ROM | disk | FTP | other *** search
/ PC go! 2008 April / PCgo 2008-04 (DVD).iso / interface / contents / demoversionen_3846 / 13664 / files / Data1.cab / modexexport.bas < prev    next >
Encoding:
BASIC Source File  |  2001-10-16  |  1.3 KB  |  28 lines

  1. Attribute VB_Name = "modExExport"
  2. '******************************************************************'
  3. '*                                                                *'
  4. '*                      TurboCAD for Windows                      *'
  5. '*                   Copyright (c) 1993 - 2001                    *'
  6. '*             International Microcomputer Software, Inc.         *'
  7. '*                            (IMSI)                              *'
  8. '*                      All rights reserved.                      *'
  9. '*                                                                *'
  10. '******************************************************************'
  11. ' This "Export TurboCAD's data to Excel " custom filter sample demonstrate
  12. ' how create custom file filter.
  13. ' This sample export some information about TurboCAD's objects into Excel spreadsheet
  14. ' here is list of TurboCAD's object's properties that this filter export.
  15.  
  16. ' Type          - type of graphic object (as string)
  17. ' Info          - graphic's info string (as string)
  18. ' PenColor      - pen color (as RGB)
  19. ' PenStyle      - pen style (as string)
  20. ' Layer         - name of the layer where graphic object is palced
  21. ' ID            - unique ID of the graphic object
  22.  
  23. Option Explicit
  24.  
  25. Public Sub Main()
  26. End Sub
  27.  
  28.